home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 19 / Mac Magazin and MacEasy Magazine CD - Issue 19.iso / System / Systemerweiterungen / Secret Finder Features / Aboout Secret Finder Features next >
Internet Message Format  |  1996-02-18  |  2KB

  1. Date: Fri, 16 Feb 1996 21:22:24 -0600
  2. From: mlbizer@mail.utexas.edu (Marc Bizer)
  3. Subject: secret finder features extension
  4.  
  5. Dear MacGifts,
  6.  
  7.         Unbeknownst to many, the currently available Finder 7.5.4
  8. (available as part of the System 7.5.2 PowerBook 190/5300/2300 update) and
  9. the upcoming Finder 7.5.5 (in System 7.5.3 / System Update 2.0) have secret
  10. features which many have desired for a long time. While shareware/freeware
  11. extensions have patched the Finder to give users what they want, what could
  12. be easier and safer than simply enabling them? Why hasn't Apple made these
  13. features known? Quite simply, they haven't had the resources to adequately
  14. test them. So don't ask Apple -- and please DO NOT send me mail asking for
  15. Finder 7.5.5 or inquiring further about how I obtained this extension or
  16. complaining that they don't work on your computer. They are as follows:
  17.  
  18. There is a Gestalt selector 'fnd#197#' (f-n-d-option-x) which enables/disables
  19. 4 secret features of Finder 7.5.5:
  20.  
  21. Control-Drag an item to make an alias to it
  22. Command-R to Reveal the original item of an alias
  23. Command-Delete Moves selection to the Trash
  24. Enable/Disable the zoom rectangles when opening/closing windows and gridding
  25.  
  26. Bits 0-3 of this Gestalt selector should be turned ON to enable these extra
  27. features.  A simple INIT which did this would work:
  28.  
  29. long result;
  30. if (_Gestalt('fnd#197#', &result) == noErr)
  31.         NewGestaltValue('fnd#197#', 0xF);
  32. else
  33.         ReplaceGestaltValue('fnd#197#', result | 0xF);
  34.  
  35. This INIT does mainly the same thing. I have tested these features and I've
  36. found them to work perfectly-- however, when you place files in the trash
  37. via command-delete, the positions of the icons aren't reset, so when you
  38. open your trash can, the moved files may not immediately be visible. All
  39. you have to do is clean up the trash window.
  40.         --Marc Bizer
  41.